home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 June / PersonalComputerWorld-June2009-CoverdiscCD.iso / Software / Freeware / Adobe AIR 1.5.1 / AdobeAIRInstaller.exe / setup.swf / scripts / mx / automation / IAutomationObject.as
Encoding:
Text File  |  2009-02-12  |  986 b   |  35 lines

  1. package mx.automation
  2. {
  3.    import flash.events.Event;
  4.    
  5.    public interface IAutomationObject
  6.    {
  7.       function createAutomationIDPart(param1:IAutomationObject) : Object;
  8.       
  9.       function get automationName() : String;
  10.       
  11.       function get showInAutomationHierarchy() : Boolean;
  12.       
  13.       function set automationName(param1:String) : void;
  14.       
  15.       function getAutomationChildAt(param1:int) : IAutomationObject;
  16.       
  17.       function get automationDelegate() : Object;
  18.       
  19.       function get automationTabularData() : Object;
  20.       
  21.       function resolveAutomationIDPart(param1:Object) : Array;
  22.       
  23.       function replayAutomatableEvent(param1:Event) : Boolean;
  24.       
  25.       function set automationDelegate(param1:Object) : void;
  26.       
  27.       function get automationValue() : Array;
  28.       
  29.       function get numAutomationChildren() : int;
  30.       
  31.       function set showInAutomationHierarchy(param1:Boolean) : void;
  32.    }
  33. }
  34.  
  35.